-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support to configure tsh
directory for data
#7035
Conversation
Please add test coverage to this PR. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like .tsh
is always being appended to the custom path. Is there a specific reason for this? Seems unnecessary and potentially confusing to me. I think it would be better if we used the path specified by the user directly. Especially since .tsh
is a hidden directory, meaning that users would likely believe that their custom path simply wasn't being set if no visible changes appear in their target directory.
@fspmarshall there was not a specific reason for it, I was just following the default, storing profiles in a hidden directory, but I can remove the appending of |
@quinqu Makes sense. Lets do that. I think it'll be more intuitive. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Bot.
958c9bb
to
3c7093a
Compare
Purpose
This PR adds support for configurable home location for
tsh
configuration and data.Implementation
Read in environment variable (if there is one) and store
tsh
data in configured path.Fixes #3375